home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Mac Game Programming Gurus / TricksOfTheMacGameProgrammingGurus.iso / More Source / C⁄C++ / Tetris Light 1.0 / source / pstring.c < prev    next >
Text File  |  1993-07-18  |  2KB  |  46 lines

  1. /******************************************************************************\
  2.  
  3. File:        pstring.c
  4.  
  5. Purpose:    This module contains implementations of the familar string
  6.             manipulation routines from the standard C libraries, but
  7.             written to operate on Pascal strings.
  8.             
  9.  
  10. ``Tetris Light'' - a simple implementation of a Tetris game.
  11. Copyright (C) 1993 Hoylen Sue
  12.  
  13. This program is free software; you can redistribute it and/or modify
  14. it under the terms of the GNU General Public License as published by
  15. the Free Software Foundation; either version 2 of the License, or
  16. (at your option) any later version.
  17.  
  18. This program is distributed in the hope that it will be useful,
  19. but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21. GNU General Public License for more details.
  22.  
  23. You should have received a copy of the GNU General Public License
  24. along with this program; see the file COPYING.  If not, write to the
  25. Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  26.  
  27. \******************************************************************************/
  28.  
  29. #include "local.h"
  30. #include "pstring.h"
  31.  
  32. /*--------------------------------------------------------------------*/
  33.  
  34. void pstrcpy(Str255 dest, const Str255 src)
  35. /* Copies the Pascal string from `src' to `dest'.  It is assumed that
  36.    there is enough space in `dest' to hold the string. */
  37. {
  38.     register short count = src[0];
  39.     
  40.     do {
  41.         *(dest++) = *(src++);
  42.     } while (count-- > 0);
  43. }
  44.  
  45. /*--------------------------------------------------------------------*/
  46.